/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --green-blue-crayola: hsl(202, 72%, 15%);
  --prussian-blue: hsl(202, 72%, 15%);
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: hsl(32, 100%, 50%);
  --alice-blue: hsl(203, 100%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --indigo-dye: hsl(202, 64%, 26%);
  --cultured-1: hsl(0, 0%, 94%);
  --cultured-2: hsl(0, 0%, 95%);
  --cultured-3: hsl(0, 0%, 95%);
  --plutinum: hsl(0, 0%, 91%);
  --black_60: hsla(0, 0%, 0%, 0.6);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 24%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 6rem;
  --fs-2: 5rem;
  --fs-3: 4rem;
  --fs-4: 3rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * shadow
   */
   
  --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
  --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
time,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--onyx);
  font-size: 1.6rem;
  line-height: 1.7;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background-color: var(--cultured-2); }

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
  border: 2px solid var(--cultured-2);
}

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.2;
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-3);
  text-transform: uppercase;
}

.h2,
.h3 { color: var(--prussian-blue); }

.h2 { font-size: var(--fs-4); }

.h3 { font-size: var(--fs-5); }

.img-holder {
  background-color: var(--light-gray);
  aspect-ratio: var(--width) / var(--height);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  color: #f14141;
  text-transform: uppercase;
  font-size: var(--fs-6);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-block-end: 10px;
}

.section-text { line-height: 1.4; }

.btn {
  position: relative;
  color: var(--white);
  background-color: #f14141;
  max-width: max-content;
  font-size: var(--fs-9);
  letter-spacing: 1px;
  padding-block: 10px;
  padding-inline: 15px 50px;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  transition: var(--transition);
}

.btn::before {
  top: 50%;
  right: 15px;
  width: 25px;
  height: 1px;
  background-color: var(--white);
}

.btn::after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  width: 20px;
  border: 2px solid var(--dark-orange);
  z-index: -1;
}

.btn:is(:hover, :focus)::before { width: 33px; }

.btn:is(:hover, :focus)::after { width: 40px; }

.grid-list {
  display: grid;
  gap: 30px;
}

.btn-link {
  color: var(--dark-orange);
  font-size: var(--fs-7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.btn-link > * {
  transform: translateX(-22px);
  transition: var(--transition);
}

.btn-link:is(:hover, :focus) > * { transform: translateX(0); }

.w-100 { width: 100%; }




/*-----------------------------------*\
 #PRELOADER
\*-----------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.preloader-content {
  text-align: center;
}

/* Slide-up animation when hidden */
#preloader.slide-up {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: -5px;
  z-index: 4;
  transition: var(--transition);
  transform: translateY(-100%);
  animation: slideDown 1.9s ease-out forwards;

  /* ✅ ADD THIS LINE BELOW */
  background-color: var(--green-blue-crayola); /* or whatever color you want */
}


/* Animation for header entrance */
@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}


/* When active on scroll */
.header.active {
  background-color: var(--green-blue-crayola);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: var(--ff-oswald);
  color: var(--white);
  font-size: 3rem;
}

.nav-open-btn {
  color: var(--white);
  font-size: 35px;
}

.nav-open-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
  transition: 0.5s var(--cubic-out);
}

.navbar-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: itemFade 0.4s ease forwards;
}

.navbar-item:nth-child(1) { animation-delay: 1.2s; }
.navbar-item:nth-child(2) { animation-delay: 1.4s; }
.navbar-item:nth-child(3) { animation-delay: 1.5s; }
.navbar-item:nth-child(4) { animation-delay: 1.6s; }
.navbar-item:nth-child(5) { animation-delay: 1.7s; }

@keyframes itemFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.navbar-top {
  display: flex;
  background-color: hsl(202, 72%, 15%);
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px solid var(--plutinum);
  padding: 30px 20px;
}

.navbar-top .logo {
  color: hsl(0, 0%, 91%);
  font-size: 3rem;
}

.nav-close-btn {
  font-size: 25px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}

.nav-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  color: #ff1100;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 40px;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--plutinum);
}

.navbar-link {
  position: relative;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background-color: var(--dark-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.navbar-link:is(:hover, :focus) {
  color: var(--dark-orange);
  transform: scale(1.05);
}

.navbar-link:is(:hover, :focus)::after {
  transform: scaleX(1);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_60);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Optional: If you're using an image logo */
.logo-img {
  margin-left: 100px;
  height: 130px;
  display: block;
}

.logo {
  font-size: 0;
}

/* Center logo on screens 500px wide */
@media (max-width: 500px) {
  .logo-img {
    margin: 0 auto;
    display: block;
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Mobile & Tablet Navbar Color Fix */
@media (max-width: 991px) {
  .navbar,
  .navbar-top {
    background-color: hsl(202, 72%, 15%) !important;
  }

  .navbar-link {
    background-color: hsl(202, 72%, 15%);
    padding: 35px;
  }

  .navbar-link:is(:hover, :focus) {
    color: var(--dark-orange);
  }
}


/* ==============================
   TOP CONTACT BAR (Mobile Only)
============================== */
.top-contact-bar {
  display: none;
  background-color: hsl(202, 72%, 15%);
  color: white;
  text-align: center;
  padding: 8px 10px;
  font-size: 13px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-contact-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.top-contact-link:hover {
  color: var(--dark-orange);
}

/* ==============================
   MOBILE/TABLET RESPONSIVE FIX
============================== */
@media (max-width: 991px) {
  .top-contact-bar {
    display: flex;
  }

  .header {
    top: 40px; /* Move header below contact bar */
    background-color: hsl(202, 72%, 15%); /* Prevent white issue */
  }

  body {
    padding-top: 130px; /* Push content below both navs */
  }
}

/* ==============================
   DESKTOP RESET
============================== */
@media (min-width: 992px) {
  .top-contact-bar {
    display: none !important;
  }

  .header {
    top: 0;
  }

  body {
    padding-top: 0;
  }
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
  padding-block-start: calc(var(--section-padding) + 85px);
  z-index: 1;
}

.hero-content {
  background-color: var(--black_60);
  color: var(--white);
  text-align: center;
  padding: 30px;

  /* Slide-in animation from left to right */
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 2.6s ease-out forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-title .span {
  color: var(--dark-orange);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.hero-text {
  margin-block: 20px 15px;
}

.btn-outline {
  max-width: max-content;
  margin-inline: auto;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  border: 1px solid var(--white);
  padding: 8px 20px;
  transition: var(--transition);
}

.btn-outline:is(:hover, :focus) {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}


.truck-scroll-wrapper {
  height: 200vh; /* enough scroll space to simulate motion */
  position: relative;
  background: transparent;
}

.truck-scroll-container {
  position: sticky;
  top: 80%; /* truck sticks to this vertical point */
  height: 100px;
  width: 100%;
  overflow: hidden;
}

.truck-svg {
  width: 120px;
  height: auto;
  display: block;
  animation: truckMove 5s linear forwards;
  animation-timeline: scroll();
}

@keyframes truckMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100vw);
  }
}








/*-----------------------------------*\
  #VARIABLES
\*-----------------------------------*/
:root {
  --primary: #275EFE;
  --primary-light: #7699FF;
  --prussian-blue: #00324a;
  --dark: #1C212E;
  --grey-dark: #3F4656;
  --grey: #6C7486;
  --grey-light: #CDD9ED;
  --white: #FFF;
  --green: #16BF78;
  --sand: #DCB773;
  --sand-light: #EDD9A9;
  --alice-blue: #f0f8ff;
}






.privacy-policy {
  max-width: 900px;
  margin: 100px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-in-out;
  font-family: 'Rubik', sans-serif;
  line-height: 1.8;
}

.privacy-policy h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem; /* Reduced from 4rem */
  color: var(--clr-primary);
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.privacy-policy p {
  font-size: 1.3rem; /* Reduced from 1.6rem */
  margin-bottom: 1.3rem;
  color: #333;
}

.policy-section {
  margin-top: 2.5rem;
}

.policy-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; /* Reduced from 2.4rem */
  color: #111;
  margin-bottom: 1rem;
  border-left: 5px solid var(--clr-primary);
  padding-left: 14px;
  font-weight: 600;
}

.policy-section ul {
  padding-left: 2rem;
  list-style: disc;
  margin-bottom: 1.3rem;
}

.policy-section li {
  font-size: 1.25rem; /* Slightly smaller for balance */
  margin-bottom: 0.7rem;
  color: #444;
}

.privacy-policy a {
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .privacy-policy {
    padding: 25px;
    margin: 60px 15px;
  }

  .privacy-policy h1 {
    font-size: 2.2rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-policy p,
  .policy-section li,
  .privacy-policy a {
    font-size: 1.15rem;
  }
}






/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter { background-color: var(--dark-orange); }

.newsletter .img-holder {
  background-color: transparent;
  margin-block-end: 20px;
  max-width: max-content;
}

.newsletter .section-title { margin-block-end: 20px; }

.email-field {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: var(--fs-9);
  height: 65px;
  padding-inline: 20px;
  margin-block-end: 10px;
  outline: none;
  transition: var(--transition);
}

.email-field:focus { box-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.4); }

.newsletter-btn {
  background-color: var(--prussian-blue);
  color: var(--white);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-700);
  padding: 8px 20px;
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--plutinum);
  color: var(--prussian-blue);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-block: 40px;
}

.footer-brand {
  flex: 1 1 100%;
}

.footer-list {
  flex: 1 1 45%;
  text-align: left;
}

.footer .logo {
  color: var(--prussian-blue);
  font-weight: var(--fw-800);
  font-size: 3.2rem;
}

.footer-text {
  margin-block: 10px 30px;
}

.social-list {
  display: flex;
  gap: 10px;
}

.social-link {
  background-color: var(--indigo-dye);
  color: var(--white);
  font-size: 20px;
  padding: 12px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) {
  background-color: var(--prussian-blue);
}

.footer-list-title {
  font-size: var(--fs-6);
  max-width: max-content;
  padding-block-end: 10px;
  border-block-end: 3px solid var(--dark-orange);
  margin-block-end: 20px;
}

.footer-link {
  position: relative;
  padding-block: 6px;
  color: var(--prussian-blue);
  transition: color 0.3s;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--dark-orange);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  padding-block: 40px;
  border-block-start: 1px solid var(--prussian-blue);
  font-size: var(--fs-9);
  color: var(--indigo-dye);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links-right {
  display: flex;
  gap: 10px;
  font-size: var(--fs-9);
  color: var(--indigo-dye);
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link-right {
  color: var(--indigo-dye);
  text-decoration: underline;
  transition: color 0.3s;
}

.footer-link-right:hover {
  color: var(--prussian-blue);
}

.copyright-link {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  color: var(--indigo-dye);
  transition: color 0.3s;
}

.copyright-link:hover {
  color: var(--prussian-blue);
}

/* ---------- RESPONSIVE LAYOUT ---------- */

/* Desktop: 3 columns side-by-side */
@media (min-width: 992px) {
  .footer-top {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .footer-brand {
    flex: 1;
    max-width: 33%;
  }

  .footer-list {
    flex: 1;
    max-width: 20%;
  }

  .copyright {
    text-align: center;
  }
}

/* Tablet & Mobile: Keep Lists side-by-side */
@media (max-width: 991px) {
  .footer-top {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
    flex: 1 1 100%;
  }

  .footer-list {
    flex: 1 1 45%;
    text-align: left;
  }

  .footer-top {
    gap: 30px;
  }

  .footer .logo {
    font-size: 2.4rem;
  }

  .social-list,
  .footer-links-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Small screens: font tweaks */
@media (max-width: 480px) {
  .footer-text,
  .footer-link,
  .footer-link-right {
    font-size: 1.3rem;
  }

  .social-link {
    padding: 10px;
    font-size: 18px;
  }
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}




/*-----------------------------------*\
  #MEDIA QUERISE
\*-----------------------------------*/

/**
 * responsive for larger than 540px screen
 */

@media (min-width: 540px) {

  /**
   * REUSED STYLE
   */

  .btn {
    font-size: var(--fs-7);
    padding-inline: 30px 60px;
  }



  /**
   * HEADER
   */

   @media (max-width: 999px) {
  .header-contact > div {
    display: none;
  }
}

  .header-contact {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
    line-height: 1.2;
    margin-inline-start: auto;
  }

  .header .contact-label {
    text-transform: uppercase;
    font-size: var(--fs-9);
  }

  .header .contact-number {
    margin-right: 30px;
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    letter-spacing: 1px;
  }

  .header .contact-icon {
    font-size: 35px;
    opacity: 0.6;
  }






}





/**
 * responsive for larger than 640px screen
 */

@media (min-width: 640px) {

  /**
   * REUSED STYLE
   */

  .h1 { --fs-3: 5rem; }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header .logo { font-size: 3.5rem; }



  /**
   * HERO
   */

  .hero { justify-content: flex-start; }

  .hero .shape-1 { left: 45px; }

  .hero-content {
    background-color: transparent;
    text-align: left;
  }

  .hero-title .span { --fs-2: 6rem; }

  .hero-text { max-width: 30ch; }

  .btn-outline { margin-inline: 0; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .h1 { --fs-3: 6rem; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

  .hero-title .span { --fs-2: 7rem; }

  .hero-text {
    font-size: var(--fs-7);
    max-width: 40ch;
    margin-block-end: 40px;
  }

  .btn-outline {
    font-size: var(--fs-7);
    padding: 12px 30px;
  }






  /**
   * PROJECT
   */

  .project-list { gap: 80px; }

  .project-item { min-width: calc(50% - 40px); }



  /**
   * NEWSLETTER
   */

  .newsletter { margin-block-start: 110px; }

  .newsletter .container { position: relative; }

  .newsletter .newsletter-banner {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin-block-end: 0;
  }

  .newsletter-content {
    max-width: 355px;
    margin-inline-start: auto;
  }

  .newsletter .section-title { --fs-4: 4rem; }

  .newsletter-btn {
    font-size: var(--fs-5);
    padding: 10px 30px;
  }





}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-4: 4.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */
  
  .container { max-width: 960px; }

  .h1 { --fs-3: 10rem; }

  .section-subtitle { --fs-6: 3rem; }

  .section-text {
    max-width: 70ch;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */
  
  .nav-open-btn,
  .navbar-top,
  .navbar-link > ion-icon { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    margin-left: 45px;
    display: flex;
    gap: 5px;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link { color: var(--white); }

  .navbar-link:is(:hover, :focus) { background-color: transparent; }

  .header-contact { margin-inline-start: 0; }



  /**
   * HERO
   */
  
  .hero { grid-template-columns: 1fr; }

  .hero-content { padding: 0; }

  .hero-title .span { --fs-2: 12rem; }









  /**
   * PROJECT
   */

  .project-item { min-width: calc(33.33% - 53.33px); }






  /**
   * NEWSLETTER
   */

  .newsletter { padding-block: 30px; }

  .newsletter .newsletter-banner { bottom: -30px; }

  .newsletter-content {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }





}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

  .h1 { --fs-3: 12rem; }



  /**
   * HEADER
   */

  .header .contact-number { --fs-6: 3rem; }



  /**
   * HERO
   */

  .hero {
    padding-block-start: 150px;
    background-position: left;
  }

  .hero-title .span { --fs-2: 14rem; }

  .hero-text { --fs-7: 2.4rem; 

color: hsl(0, 0%, 100%);
font-weight: bolder;}


  




  /**
   * NEWSLETTER
   */

  .newsletter-content {
    max-width: 840px;
    grid-template-columns: 0.8fr 1fr;
  }



  /**
   * FOOTER
   */

  .footer-top { padding-block: 60px; }

}